home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 3 / Gold Medal Software - Volume 3 (Gold Medal) (1994).iso / windows / editprog / cenviw9.arj / KEYCODE.CMM < prev    next >
Encoding:
Text File  |  1994-03-09  |  376 b   |  11 lines

  1. //****************************************************
  2. //*** KeyCode - Print values of characters pressed ***
  3. //*** ver.1                                        ***
  4. //****************************************************
  5.  
  6. printf("Press Key to see keyboard value; Press ESCAPE to exit\n");
  7. do {
  8.    key = getch();
  9.    printf("key=%04X\n",key)
  10. } while( key != '\033' );
  11.